web3.js web3.utils.isHexStrict
web3.utils.isHexStrict(hex)
与えられた文字列が16進数文字列かどうかをチェックします。
パラメータ
1. hex - String|HEX
16進数文字列
サンプル
code:example.js
web3.utils.isHexStrict('0xc1912');
true
web3.utils.isHexStrict(0xc1912);
false
web3.utils.isHexStrict('c1912');
false
web3.utils.isHexStrict(345);
false // this is tricky, as 345 can be a a HEX representation or a number, be careful when not having a 0x in front!
web3.utils.isHexStrict('0xZ1912');
false
web3.utils.isHex('Hello');
false
参考